home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c4 / pro20 / rasttopb.c < prev    next >
C/C++ Source or Header  |  1990-05-31  |  3KB  |  97 lines

  1. /* rasttopbm.c - read a Sun raster file and produce a portable bitmap
  2. **
  3. ** Copyright (C) 1988 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "pbm.h"
  15. #include "rast.h"
  16.  
  17. main( argc, argv )
  18. int argc;
  19. char *argv[];
  20.     {
  21.     FILE *ifd;
  22.     struct rasterfile header;
  23.     struct pixrect *pr, *pr_load_image();
  24.     register bit *bitrow, *bP;
  25.     int rows, cols, row, col, mask;
  26.     int linesize;
  27.     unsigned char *data, *byteP;
  28.  
  29.     pm_progname = argv[0];
  30.  
  31.     if ( argc > 2 )
  32.     pm_usage( "[rastfile]" );
  33.  
  34.     if ( argc == 2 )
  35.     ifd = pm_openr( argv[1] );
  36.     else
  37.     ifd = stdin;
  38.  
  39.     /* Read in the raster file.  First the header. */
  40.     if ( pr_load_header( ifd, &header ) != 0 )
  41.     pm_error( "unable to read in raster file header", 0,0,0,0,0 );
  42.  
  43.     /* PBM can only handle monochrome bitmaps. */
  44.     if ( header.ras_depth != 1 )
  45.     pm_error(
  46.         "invalid depth %d - PBM can only handle depth 1",
  47.         header.ras_depth, 0,0,0,0 );
  48.  
  49.     cols = header.ras_width;
  50.     rows = header.ras_height;
  51.     if ( cols <= 0 )
  52.     pm_error( "invalid cols: %d", cols, 0,0,0,0 );
  53.     if ( rows <= 0 )
  54.     pm_error( "invalid rows: %d", rows, 0,0,0,0 );
  55.  
  56.     /* If there is a color map (there shouldn't be), skip over it. */
  57.     if ( header.ras_maptype != RMT_NONE || header.ras_maplength != 0 )
  58.     {
  59.     if ( pr_load_colormap( ifd, &header, NULL ) != 0 )
  60.         pm_error( "unable to skip colormap data", 0,0,0,0,0 );
  61.     }
  62.  
  63.     /* Now load the data.  The pixrect returned is a memory pixrect. */
  64.     if ( (pr = pr_load_image( ifd, &header, NULL )) == NULL )
  65.     pm_error(
  66.         "unable to read in the image from the raster file", 0,0,0,0,0 );
  67.  
  68.     linesize = ( (struct mpr_data *) pr->pr_data )->md_linebytes;
  69.     data = ( (struct mpr_data *) pr->pr_data )->md_image;
  70.  
  71.     pm_close( ifd );
  72.  
  73.     /* Now write out the PBM. */
  74.     pbm_writepbminit( stdout, cols, rows );
  75.     bitrow = pbm_allocrow( cols );
  76.  
  77.     for ( row = 0; row < rows; row++ )
  78.     {
  79.     byteP = data;
  80.     mask = 0x80;
  81.     for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  82.         {
  83.         if ( mask == 0 )
  84.         {
  85.         byteP++;
  86.         mask = 0x80;
  87.         }
  88.         *bP = ( *byteP & mask ) ? PBM_BLACK : PBM_WHITE;
  89.         mask = mask >> 1;
  90.         }
  91.     data += linesize;
  92.     pbm_writepbmrow( stdout, bitrow, cols );
  93.     }
  94.  
  95.     exit( 0 );
  96.     }
  97.